for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
function UnityCacheError(message) {
this.message = message || '';
}
Object.setPrototypeOf(UnityCacheError.prototype, Error.prototype);
UnityCacheError.prototype.name = 'UnityCacheError';
export default UnityCacheError;